.right-fixedgt {
  width: 60px;
  position: fixed;
  right: 10px;
  bottom: 200px;
  z-index: 5;
}
.right-fixedgt .fixedgt {
  width: 100%;
  padding: 14px 0;
  background-image: linear-gradient(0deg, #ffffff 0%, #f2f7f5 100%);
  box-shadow: 6px 6px 20px 0px rgba(55, 171, 132, 0.1);
  border-radius: 6px;
  border: 2px solid rgba(225, 225, 225, 0.9);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.right-fixedgt .fixedgt .fixedgt-box {
  position: relative;
}
.right-fixedgt .fixedgt .fixedgt-box .fixedgt-li {
  width: 40px;
  padding: 4px 10px;
  margin: 10px 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.right-fixedgt .fixedgt .fixedgt-box .fixedgt-li .icon {
  width: 24px;
  height: 24px;
  display: block;
  margin-bottom: 8px;
  background-repeat: no-repeat;
  background-size: auto 24px;
  background-position: 0 0;
}
.right-fixedgt .fixedgt .fixedgt-box .fixedgt-li .icon.phone {
  background-image: url("/icon/phone.png");
}
.right-fixedgt .fixedgt .fixedgt-box .fixedgt-li .icon.wechat {
  width: 29px;
  background-image: url("/icon/wechat.png");
}
.right-fixedgt .fixedgt .fixedgt-box .fixedgt-li .icon.message {
  background-image: url("/icon/message.png");
}
.right-fixedgt .fixedgt .fixedgt-box .fixedgt-li .text {
  width: 28px;
  font-family: OPPOSans-R;
  font-size: 13px;
  color: #333333;
  line-height: 18px;
  text-align: center;
}
.right-fixedgt .fixedgt .fixedgt-box .hover-cont {
  width: 226px;
  position: absolute;
  top: 9px;
  right: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
.right-fixedgt .fixedgt .fixedgt-box .hover-cont .hover-wrap {
  width: 210px;
  padding: 30px 24px 28px;
  background-image: linear-gradient(0deg, #ffffff 0%, #f2f7f5 100%);
  box-shadow: 6px 6px 20px 0px rgba(55, 171, 132, 0.1);
  border-radius: 5px;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.right-fixedgt .fixedgt .fixedgt-box .hover-cont .hover-wrap.flexLeft {
  align-items: flex-start;
}
.right-fixedgt .fixedgt .fixedgt-box .hover-cont .hover-wrap.flexCenter {
  align-items: center;
}
.right-fixedgt .fixedgt .fixedgt-box .hover-cont .hover-wrap .hover-tit {
  font-family: OPPOSans-R;
  font-size: 14px;
  color: #333333;
  margin-bottom: 10px;
}
.right-fixedgt .fixedgt .fixedgt-box .hover-cont .hover-wrap .hover-txt {
  font-family: OPPOSans-B;
  font-size: 16px;
  color: #00bf80;
}
.right-fixedgt .fixedgt .fixedgt-box .hover-cont .hover-wrap .hover-img {
  width: 120px;
}
.right-fixedgt .fixedgt .fixedgt-box .hover-cont .hover-wrap .hover-img .img {
  width: 100%;
  height: auto;
  display: block;
}
.right-fixedgt .fixedgt .fixedgt-box .hover-cont .hover-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 0px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left-color: #ffffff;
}
.right-fixedgt .fixedgt .fixedgt-box:hover .fixedgt-li .icon {
  background-position: -49px 0;
}
.right-fixedgt .fixedgt .fixedgt-box:hover .fixedgt-li .text {
  color: #00bf80;
}
.right-fixedgt .fixedgt .fixedgt-box:hover .hover-cont {
  visibility: visible;
  opacity: 1;
}
